eric7.MicroPython.WifiDialogs.WifiApConfigDialog
Module implementing a dialog to configure the Access Point interface.
Global Attributes
Classes
Functions
WifiApConfigDialog
Class implementing a dialog to configure the Access Point interface.
Derived from
QDialog, Ui_WifiApConfigDialog
Class Attributes
Class Methods
Methods
Static Methods
WifiApConfigDialog (Constructor)
WifiApConfigDialog(withIP, securityModes, parent=None)
Constructor
- withIP (bool)
-
flag indicating to ask the user for an IP configuration
- securityModes (list of str)
-
list of supported security modes
- parent (QWidget (optional))
-
reference to the parent widget (defaults to None)
WifiApConfigDialog.__updateOk
__updateOk()
Private method to update the enabled state of the OK button.
WifiApConfigDialog.accept
accept()
Public slot accepting the dialog.
WifiApConfigDialog.getApConfig
getApConfig()
Public method to get the entered access point configuration data.
- Return:
-
tuple containing the SSID, the password, the selected security mode
and a tuple with the IPv4 address, the netmask, the gateway address and
the resolver address
- Return Type:
-
tuple of (str, str, int, (str, str, str, str))